home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1
/
Nebula One.iso
/
Misc
/
msql-1.0.6
/
src
/
makegen
/
directory.mm
next >
Wrap
Text File
|
1994-12-12
|
340b
|
18 lines
#!/bin/sh
. $TOP/makegen/makegen.cf
DIR=$1
TARGETS=`echo $2 | sed "s/,/ /g"`
for targ in $TARGETS
do
echo "$targ ::"
echo " @echo ;\\"
echo " echo \"--> [$DIR] directory \" ;\\"
echo " cd $DIR ;\\"
echo " make \$(MFLAGS) $targ ;\\"
echo " echo \"<-- [$DIR] done \" "
echo ""
done